home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / c / flash-0.4.3.lha / flash-0.4.3 / Lib / text.h < prev   
C/C++ Source or Header  |  1999-02-21  |  2KB  |  84 lines

  1. /////////////////////////////////////////////////////////////
  2. // Flash Plugin and Player
  3. // Copyright (C) 1998,1999 Olivier Debon
  4. // 
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. // 
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14. // 
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18. // 
  19. ///////////////////////////////////////////////////////////////
  20. #ifndef _TEXT_H_
  21. #define _TEXT_H_
  22.  
  23. #include "swf.h"
  24. #include "font.h"
  25. #include "character.h"
  26.  
  27. #ifdef DUMP
  28. #include "bitstream.h"
  29. #endif
  30.  
  31. struct Glyph {
  32.     long    index;
  33.     long    xAdvance;
  34.     long    code;    // Ascii code
  35. };
  36.  
  37. struct TextRecord {
  38.  
  39.     // Normal text record
  40.     Glyph        *glyphs;
  41.     long         nbGlyphs;
  42.  
  43.     // Control text record
  44.     TextFlags     flags;
  45.     SwfFont        *font;
  46.     long         fontHeight;
  47.     Color         color;
  48.     long         xOffset;
  49.     long         yOffset;
  50.  
  51.     TextRecord *next;
  52.  
  53.     TextRecord();
  54.     ~TextRecord();
  55.  
  56.     char        *getText();
  57. };
  58.  
  59. class Text : public Character {
  60.  
  61.     Rect         boundary;
  62.     Matrix         textMatrix;
  63.     TextRecord    *textRecords;    // List
  64.  
  65. public:
  66.     Text(long id);
  67.     ~Text();
  68.  
  69.     void         setTextBoundary(Rect rect);
  70.     void         setTextMatrix(Matrix m);
  71.     void         addTextRecord(TextRecord *tr);
  72.     int         execute(GraphicDevice *gd, Matrix *matrix, Cxform *cxform);
  73.     void         getRegion(GraphicDevice *gd, Matrix *matrix, unsigned char id);
  74.     int         doText(GraphicDevice *gd, Matrix *matrix, Cxform *cxform, ShapeAction action, unsigned char id);
  75.     Rect         getBoundingBox();
  76.     TextRecord     *getTextRecords();
  77.  
  78. #ifdef DUMP
  79.     void     dump(BitStream *bs);
  80. #endif
  81. };
  82.  
  83. #endif /* _TEXT_H_ */
  84.